home *** CD-ROM | disk | FTP | other *** search
Makefile | 1996-05-05 | 855 b | 46 lines |
- MODULE = thread
-
-
- #
- # Object files
- #
- FILESO = initializeTcb.o initializeThreads.o space.o threadFork.o \
- threadSwitch.o threadRestart.o dispatch.o notify.o \
- auditThread.o sleep.o
-
-
- #
- # Source files
- #
- FILESC = initializeTcb.c initializeThreads.c space.c threadFork.c \
- threadSwitch.c threadRestart.c dispatch.c notify.c \
- auditThread.c sleep.C
-
- FILES_ASM = jmp.S
- FILES_ASM_O = jmp.o
-
- .SUFFIXES: .o .S
-
- default: workspace.mod
-
- #
- # Make _setjmp() and _longjmp() for the IBM RS6000 running AIX.
- # SM_RS6000 should be defined in the top-level makefile.options.
- #
- .S.o:
- for i in `echo $(SM_RS6000)` ; \
- do( \
- /bin/rm -f $*.o ; \
- echo compiling jmp.S for IBM RS6000 ; \
- m4 /usr/include/sys/asdef.s $*.S | as -o $*.o ; \
- ); done;
-
- workspace: $(FILES_ASM)
-
- workspace.mod: $(FILES_ASM_O)
-
- include ../makefile.subdir
-
- include makefile.depend
-
-